home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / editor / auror300.zip / MAIN.AML < prev    next >
Text File  |  1996-07-17  |  1KB  |  59 lines

  1. //--------------------------------------------------------------------
  2. // The Aurora Editor v3.0, Copyright (C) 1993-1996 nuText Systems
  3. //
  4. // MAIN.AML
  5. // Main Source File for A.x
  6. //
  7. // If you have made any changes, save this file and select Recompile
  8. // the Editor from the Set menu. Exit and re-enter the editor for your
  9. // changes to take effect.
  10. //--------------------------------------------------------------------
  11.  
  12. object a
  13.  
  14. // compile-time macros and constants
  15. include bootpath "define.aml"
  16.  
  17. object prf
  18.  
  19. // configuration settings
  20. include bootpath "config.aml"
  21.  
  22. // system settings
  23. include bootpath "system.aml"
  24.  
  25. object a
  26.  
  27. // colors
  28. include bootpath "color.aml"
  29.  
  30. // library
  31. include amlfile "lib"
  32.  
  33. // extensions
  34. include bootpath "ext.aml"
  35.  
  36. // user extensions (include if present)
  37. #if file? (bootpath "user.aml")
  38. include bootpath "user.aml"
  39. object a
  40. #end
  41.  
  42. // menu definitions
  43. include bootpath "menu.aml"
  44.  
  45. // keyboard definitions
  46. include bootpath "kbd.aml"
  47.  
  48. // mouse definitions
  49. include bootpath "mouse.aml"
  50.  
  51. // syntax highlighting definitions
  52. include bootpath "syntax.aml"
  53.  
  54. // startup extensions (include if present)
  55. #if file? (bootpath "startup.aml")
  56. object a
  57. include bootpath "startup.aml"
  58. #end
  59.